10. operator= return *this reference

C++의 대입연산자는 관례적으로 좌측 인자의 참조자를 반환하도록 구현되어 있다.
class Widget{
public:
// ...
Widget& operator=(const Widget& rhs){
// ...
return *this;
}
}